home *** CD-ROM | disk | FTP | other *** search
/ The Scorpion King Cardz / The Scorpion King Cardz - Disc 4 - Memnon.iso / pc / assets / scorp_postcards_send.dxr / 00007_removeEndSpaces .ls < prev    next >
Encoding:
Text File  |  2002-03-25  |  274 b   |  14 lines

  1. on removeEndSpaces theString
  2.   totalChars = the number of chars in theString
  3.   i = totalChars
  4.   repeat while i > 0
  5.     if char i of theString = " " then
  6.       delete char i of theString
  7.     else
  8.       exit repeat
  9.     end if
  10.     i = i - 1
  11.   end repeat
  12.   return theString
  13. end
  14.